Activity
May 21, 2025
09:34 AM
Maybe this could help you: https://helpx.adobe.com/x-productkb/global/invalid-revoked-serial-numbers.html?linkId=100000342660829
... View more
Apr 16, 2025
01:40 AM
Did you try Windows Clipboard History ? https://www.howtogeek.com/671222/how-to-enable-and-use-clipboard-history-on-windows-10/
... View more
Apr 02, 2025
08:09 AM
1 Upvote
To see, who is using this file just open the lck-file in any text editor. Then you can see the user and the date. One of the reasons why FrameMaker doesn't "complain" the locked files: In your preferences "lock files" is deactivated
... View more
Feb 17, 2025
02:28 AM
2 Upvotes
Try the following: FrameMaker menue -> View - Panel -> Fonts and then: replace Fonts
... View more
Feb 05, 2025
09:20 AM
Hi Winfried, try this: loFlow = loDoc.MainFlowInDoc; loPgf = loFlow.FirstTextFrameInFlow.FirstPgf; loTLoc = new TextLoc (); loTLoc.obj = loPgf; loTLoc.offset = 0; loDoc.AddText (loTLoc, "123"); loTLoc.offset = loTLoc.offset + "123".length loTLocStartOffset = loTLoc.offset; loDoc.AddText (loTLoc, "456"); loTLoc.offset += "456".length; loDoc.AddText (loTLoc, "789"); You don't have to look for EndOfOffset Just "count"
... View more
Jan 16, 2025
12:26 AM
2 Upvotes
Hi Bjørn, You are right. Customer lists are document specific. After investigating several hours, I've asked the developers to make this accessible for Extendscript. They did so, but it is "READONLY" ;-(( I've developed some scripts to build and import User lists, but it is difficult to handle, so I didn't publish them yet. You can contact me directly to discuss that. (You should have my e-mail address)
... View more
Nov 02, 2024
07:24 AM
Hi Rick, you are right. Object Styles were added to FrameMaker Version 12.
... View more
Sep 19, 2024
05:06 AM
2 Upvotes
There is a bug in FrameMaker11 installation. you have to install an additional patch (11.0.2).
... View more
Jun 10, 2024
12:40 AM
1 Upvote
I'm working with Windows11 and since the last update this problem is gone. So my conclusion is, that it is not a matter of FrameMaker, but Windows.
... View more
Dec 11, 2023
01:08 AM
You should take a closer look at SVG. You can use it to implement this. I played around with it once. You can see the result in the attached file. Also click on some elements.
... View more
Sep 19, 2023
10:36 AM
1 Upvote
Just create one and call it as you want. You can use both: Paragraph styles and or marker
... View more
Sep 19, 2023
07:10 AM
1 Upvote
Since FrameMaker2020 there is a tool: in File -> Utilities ->"Split current document" if it is not displayed, here's the solution: https://community.adobe.com/t5/framemaker-discussions/utility-split-current-document-disappeared/m-p/13071495
... View more
Jul 17, 2023
04:51 AM
The problem is the FrameMaker file. If you open it "manually", are there any error messages? if so, try to get rid of them. - Missing graphics, missing "anything", older version..... Then it should work. So you should use simpleopen only, if you are SURE, that the file is OK. Otherwise use "open"
... View more
Jun 01, 2023
11:32 PM
It's just a little typo: change if (CondFmt.CondFmtIsShown = 0){ to if (CondFmt.CondFmtIsShown == 0){
... View more
Apr 21, 2023
05:14 AM
Add this to your code: j = GetPropIndex(oImpParms, Constants.FS_ForceImportAsText); oImpParms[j].propVal.ival = true; I've tested it and it works. No idea why , although the documentation says something about MIF. I then just tried it out.
... View more
Apr 18, 2023
04:05 AM
Hi Klaus, with one change, it works for me: oRetParms={} -> oRetParms=new PropVals()
... View more
Apr 12, 2023
06:15 AM
Hi Rick, try this: cmd = topMenu.DefineAndAddCommand (40, "MyCommandCmd", "My Command", "^j"); // j for the key
... View more
Apr 07, 2023
12:51 AM
2 Upvotes
Hi Jang, try this: var sAttrValue = "2018"; var sCharCode = String.fromCharCode("0x" + sAttrValue);
... View more
Jan 30, 2023
02:54 AM
@jacobtaylor I think that it is easier for beginners to see single steps. But your solution is of course much more compact - thanks
... View more
Jan 29, 2023
11:32 PM
1 Upvote
It is very simple. You just only have to return the result of the loop: var topPageArray=[1,2,3,4,5,6,10,11];
var FindValue = 5;
var gbFound = false
var result = contains(FindValue, topPageArray);
alert(result);
function contains(fValue, fArray)
{
var FindPos = -1;
var bFound = false;
for (var i = 0; i < fArray.length; i++)
{
if (FindValue == fArray[i])
{
FindPos = i;
bFound = true;
break;
}
}
return bFound;
}
... View more
Dec 14, 2022
04:15 AM
2 Upvotes
Today I was able to isolate the problem. Without telling the whole story, here is the solution: 1. the problem is NOT caused by "Split current document". 2. the problem is caused by certain configurations of Windows or FrameMaker scripts. Which these are, I do not know. Maybe file permissions under Windows? 3. the problem is that binary scripts with the file extension "*.jsxbin" in the "\startup" directory are not executed. On the other hand, scripts with the extension "*.jsx" are executed. Workaraound: Download attached file rename it as CallSplitter.jsx Copy the file to the FrameMaker 2020 user directory C:\Users\<USERNAME>\AppData\Roaming\Adobe\FrameMaker\16\startup (17 for 2022) If this folder doesn't exist, just create it. Restart FrameMaker. If the normal way works again for you, the script should be deleted. You can also do this via FrameMaker -> File -> Script -> Catalog. What does this small script do? - It simply calls "FileSplitter.jsxbin" again. Many thanks to @Winfried Reng for your tests
... View more
Nov 15, 2022
02:33 AM
SORRY FOR THE POST. I was wrong
... View more
Jul 22, 2022
01:17 AM
Hello Lin, I have a very powerful tool to manage colours. It analyses a document, shows where colours are used (character formats, paragraph formats, graphics etc). You can then selectively replace the colours in the individual formats. Unused formats are offered for deletion. Another addon compares the colour definitions in different documents and shows both the differences in the colour definition and whether the colour is used. But the addon package is not yet published because the documentation is still missing. But I could send you a demo version with a rudimentary description. By when do you need the script?
... View more
Jun 21, 2022
07:17 AM
Hi Klaus, sorry for my late reply. I think the problem ist an undefined StyleTag: Your function: function ApplyObjectStyle (oDoc, oObject, sStyle) { // ================ var oObjStyle, oGraphicsFmt, oProps, sStyle; So sStyle is undefined, because you use the same variable name twice: sStyle That is the reason, I use to name all parameters from a function starting with an "f": foDoc, foObject and so on to make it clearer
... View more
May 11, 2022
01:07 AM
4 Upvotes
I found this today in a German article about vulnerabilities of some Adobe products https://www.pcwelt.de/news/Adobe-schliesst-10-Framemaker-Luecken-11230818.html Solution can be found here: https://helpx.adobe.com/framemaker/kb/fix-for-multiple-vulnerabilities-in-framemaker-may-2022.html
... View more
Apr 06, 2022
02:53 AM
Hi Klaus, I've just tested with your files: In the UnstructMasterPageMaps(RefPage 5), there are two masterpages missing: - Book-title - Chapter--title (your page is named Chapter-title) Change / edit the names and try again
... View more
Mar 18, 2022
05:40 AM
1 Upvote
I'm using Win11 and I found this new feature: Press <win> + v Then you'll find not only the clipboard, but also characters, gifs and so on.
... View more
Mar 17, 2022
09:30 AM
1 Upvote
Today I've installed FrameMaker 12 on my Win11-PC. No Problems. When updating to Win11, I already had installed FM2017, FM2019, FM2020. No problems at all. But how did you try to install? I have noticed that when I install from a drive other than c:\, problems occur. So I got into the habit of copying all FrameMaker installation files to a temporary directory (c:\temp) and only then running them.
... View more
Mar 02, 2022
12:08 AM
Hi Vijay, I need a little more informations - what FrameMaker version do you use? - Windows version? - is your code ExtendScript, FrameScript, FDK? - could you show the code? - do you open all documents of the books and close it again?
... View more